home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / networking / 2104 < prev    next >
Encoding:
Text File  |  1996-08-05  |  2.9 KB  |  70 lines

  1. Path: news.mountain.net!usenet
  2. From: gene_heskett@wvlink.mpl.com (Gene Heskett)
  3. Newsgroups: comp.sys.amiga.networking
  4. Subject: Re: Good Dialup program for AmiTCP?
  5. Date: 03 Mar 96 12:57:13 +0500
  6. Organization: MountainNet, Inc. Morgantown WV 800.444.1458
  7. Message-ID: <2516.6636T777T653@wvlink.mpl.com>
  8. References: <4h11pp$k94@news.csus.edu>
  9. NNTP-Posting-Host: slip6.mpl.com
  10. X-Newsreader: THOR 2.22 (Amiga;TCP/IP)
  11.  
  12.  
  13.  HJM> on the other hand do not understand the former and the later
  14.  
  15.  HJM>                             Thanks in advance
  16.  
  17. SlipCall crashed me too, unless I had segtracker/enforcer running. I
  18. couldn't afford the paper to log the hits, nor the performance hit
  19. that caused. Ergo, I *had* to fix Dailup since my ISP never woke up
  20. on the first cr transmitted, and got it baud rates all messed up if
  21. I sent a string of them.
  22.  
  23. Get the exact syntax of the commands from the system folks at the U.,
  24. or record them as a macro in a term proggy while doing a manual login,
  25. then plug them into the correct vars in the dialup line and go.
  26.  
  27. Bear in mind that dialup only parses the rest of the line in your
  28. script that its called on, therefore when editing this script, you
  29. *must* turn off any automatic linefeeds/word-wrappers your editor
  30. might do. That single line could be 300+ characters long!
  31.  
  32. I am on a system that doesn't use PAP/CHAP, does use kerboros, and is
  33. PPP only. Here is the script I feed it from a toolmanager button.
  34.  
  35. FAILAT 21
  36. c:dialup RPF=CON:420/270/270/200/DialUp/CLOSE/INACTIVE LOT=10 SCF=RAM:Env/SANA2/ppp0.config RDD=15 NRC CS="CONNECT 57600|115200" PN=atdtTHEUNIVERSITYNUMBER\n LOGINTIMEOUT=5 WBW=3 WUS=\r\*\r LIP="ername>" LIN="your_account_name\r" PWP="assword>" PW="your_password\r2\r" LOK=""
  37. IF "$SLIPCARRIER" EQ "ON"
  38.     Amitcp:bin/StartNet
  39. ELSE
  40.     AmiTCP:bin/StopNet Flush
  41. ENDIF
  42. -eof-
  43.  
  44. That 'Dialup' line is 276 characters long.
  45.  
  46. See the "y..d\r2\r" which is part of the transmitted password above,
  47. the '2' is the actual 'PPP' trigger in this case since my site
  48. presents a 1 to 10 menu after the password is validated. The '2' is
  49. the start PPP option on that menu.
  50.  
  51. Note too that I've used some abreviations in that line. Not all of
  52. the variable names used in DialUp have abreviations available, so
  53. consult the docs for the exact abreviation to use if there is one
  54. available for that item.
  55.  
  56. As explained in the 3.06 docs, the only thing I changed was the WUS
  57. treatment, that * in there now causes a 1/4 second delay so the autobaud
  58. routines at the server don't get so confused. All I can say is Read
  59. the manual, paying attention to one item at a time.  Its very easy to
  60. get lost in that forest, I've done it myself many times! 8-(
  61.  
  62. Cheers
  63.  
  64. /*  Gene Heskett, one of Dialups authors |  These opinions are NOT to be  */
  65. /*  CE @ WDTV Weston/Clarksburg WV       |  confused with the official    */
  66. /*  <gene_heskett@wvlink.mpl.com>        |  WDTV managment views          */
  67. #include <std.disclaimer>
  68.  
  69.  
  70.